3c1db6cb6fcef90c9c94bf1079eb806ff82e0107,app/src/main/java/org/wikipedia/page/PageActivity.java,PageActivity,onDestroy,#,704

Before Change



    @Override
    public void onDestroy() {
        unbinder.unbind();
        unregisterBus();
        super.onDestroy();
    }

After Change



    @Override
    public void onDestroy() {
        if (unbinder != null) {
            unbinder.unbind();
        }
        unregisterBus();
        super.onDestroy();